View Javadoc

1   /*
2    * GRIDIdentityMappingServiceExample.java
3    *
4    * Created on January 6, 2005, 8:48 AM
5    */
6   
7   package org.opensciencegrid.authz.service;
8   
9   import org.opensciencegrid.authz.stubs.AuthorizationServiceBindingSkeleton;
10  
11  /*** An AuthZ service that uses the example as a GRID Identity Mapping Service.
12   *
13   * @author Gabriele Carcassi
14   */
15  public class GRIDIdentityMappingServiceExample extends AuthorizationServiceBindingSkeleton {
16      
17      /*** Creates a new instance of GRIDIdentityMappingServiceExample */
18      public GRIDIdentityMappingServiceExample() {
19          super(new BasicMappingAuthZService(new GRIDIdentityMappingServiceExampleImpl()));
20      }
21      
22  }